翻訳と辞書
Words near each other
・ Nearctic Stakes
・ Neardonaea
・ Nearer My God to Thee (album)
・ Nearer My God to Thee (disambiguation)
・ Nearer My God to Thee (film)
・ Nearer the Moon
・ Nearer, My God, to Thee
・ Nearest and Dearest
・ Nearest and Dearest (film)
・ Nearest centroid classifier
・ Nearest integer function
・ Nearest neighbor
・ Nearest neighbor graph
・ Nearest neighbor search
・ Nearest neighbor value interpolation
Nearest neighbour algorithm
・ Nearest neighbour classifiers
・ Nearest neighbour distribution
・ Nearest referent
・ Nearest relative
・ Nearest-neighbor chain algorithm
・ Nearest-neighbor interpolation
・ NEARfest
・ NearGlobal
・ Neargyractis
・ Neargyractis alemundalis
・ Neargyractis caesoalis
・ Neargyractis fulvicinctalis
・ Neargyractis holocycla
・ Neargyractis moniligeralis


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Nearest neighbour algorithm : ウィキペディア英語版
Nearest neighbour algorithm

The nearest neighbour algorithm was one of the first algorithms used to determine a solution to the travelling salesman problem. In it, the salesman starts at a random city and repeatedly visits the nearest city until all have been visited. It quickly yields a short tour, but usually not the optimal one.
----
Below is the application of nearest neighbour algorithm on TSP
These are the steps of the algorithm:
# start on an arbitrary vertex as current vertex.
# find out the shortest edge connecting current vertex and an unvisited vertex V.
# set current vertex to V.
# mark V as visited.
# if all the vertices in domain are visited, then terminate.
# Go to step 2.
The sequence of the visited vertices is the output of the algorithm.
The nearest neighbour algorithm is easy to implement and executes quickly, but it can sometimes miss shorter routes which are easily noticed with human insight, due to its "greedy" nature. As a general guide, if the last few stages of the tour are comparable in length to the first stages, then the tour is reasonable; if they are much greater, then it is likely that there are much better tours. Another check is to use an algorithm such as the lower bound algorithm to estimate if this tour is good enough.
In the worst case, the algorithm results in a tour that is much longer than the optimal tour. To be precise, for every constant r there is an instance of the traveling salesman problem such that the length of the tour computed by the nearest neighbour algorithm is greater than r times the length of the optimal tour. Moreover, for each number of cities there is an assignment of distances between the cities for which the nearest neighbor heuristic produces the unique worst possible tour.〔G. Gutin, A. Yeo and A. Zverovich, 2002〕
The nearest neighbour algorithm may not find a feasible tour at all, even when one exists.
==Notes==


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Nearest neighbour algorithm」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.